Skip to main content
GET
/
v1
/
agents
List Agents (Minimal)
curl --request GET \
  --url https://api.xpander.ai/v1/agents \
  --header 'x-api-key: <api-key>'
{
  "items": [
    {
      "id": "93a1cd50-2af0-452a-99a0-6e1f1b14fb29",
      "name": "Product Specialist",
      "description": "Answers product questions using web search and documentation",
      "icon": "πŸš€",
      "status": "ACTIVE",
      "deployment_type": "serverless",
      "created_at": "2026-02-05T18:54:51.388334Z",
      "model_provider": "anthropic",
      "model_name": "claude-sonnet-4-5-20250929",
      "framework": "agno",
      "organization_id": "91fbe9bc-35b3-41e8-b59d-922fb5a0f031",
      "llm_api_base": null,
      "has_pending_changes": false
    }
  ],
  "total": 12,
  "page": 1,
  "per_page": 20,
  "total_pages": 1
}
Retrieve a paginated list of AI agents with minimal information including ID, name, and deployment status. This endpoint provides a lightweight way to browse available agents without fetching full configuration details.

Query Parameters

page
integer
default:1
Page number (starting from 1)
per_page
integer
default:20
Items per page (maximum 50)

Response

Returns a paginated list of agents with summary information:
items
array
Array of agent objects
total
integer
Total number of agents across all pages
page
integer
Current page number
per_page
integer
Number of items per page
total_pages
integer
Total number of pages available

Example Request

curl -X GET -H "x-api-key: <your-api-key>" \
  "https://api.xpander.ai/v1/agents?page=1&per_page=2"

Example Response

{
  "items": [
    {
      "id": "<agent-id>",
      "name": "Product Specialist",
      "description": "Processes queries to provide comprehensive product information",
      "icon": "πŸš€",
      "status": "ACTIVE",
      "organization_id": "<org-id>",
      "deployment_type": "serverless",
      "created_at": "2026-02-05T18:35:04.724091Z",
      "model_provider": "openai",
      "model_name": "gpt-4.1",
      "framework": "agno",
      "type": "manager"
    },
    {
      "id": "<agent-id>",
      "name": "Data Analyst",
      "description": "Analyzes and visualizes data from multiple sources",
      "icon": "πŸ“Š",
      "status": "ACTIVE",
      "organization_id": "<org-id>",
      "deployment_type": "serverless",
      "created_at": "2026-02-04T10:22:15.123456Z",
      "model_provider": "openai",
      "model_name": "gpt-4.1",
      "framework": "agno",
      "type": "manager"
    }
  ],
  "total": 41,
  "page": 1,
  "per_page": 2,
  "total_pages": 21
}

Notes

  • The items array is sorted by creation date (newest first)
  • Use pagination to handle large result sets efficiently
  • Status values are: ACTIVE (deployed and ready), INACTIVE (not deployed)
  • See List Agents (Full Details) for complete agent configuration

Authorizations

x-api-key
string
header
required

API Key for authentication

Query Parameters

page
integer
default:1

Page number (starting from 1)

Required range: x >= 1
per_page
integer
default:20

Items per page (max 50)

Required range: 1 <= x <= 50

Response

Successful Response

items
MinimalAIAgent Β· object[]
total
integer
page
integer
per_page
integer
total_pages
integer